/* Partner Institutions Grid and Card Styles */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.partner-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.04);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.partner-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.13), 0 4px 16px 0 rgba(215,38,167,0.13);
  transform: translateY(-4px) scale(1.03);
}
.partner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(120deg, #d726a7 0%, #a259f7 60%, #ff7a2f 100%);
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(215,38,167,0.10);
}
.partner-name {
  font-weight: 700;
  color: #181c24;
  font-size: 1.15rem;
  text-align: center;
}
/* Pink-Orange Highlight Card (e.g. Chief Guest) */
.highlight-card {
  background: linear-gradient(120deg, #ffe6f7 60%, #f5eaff 100%);
  border-radius: 1.3rem;
  padding: 1.6rem 2rem 1.2rem 2rem;
  box-shadow: 0 2px 16px 0 rgba(215,38,167,0.07);
  color: #23272a;
  margin-bottom: 1.5rem;
  min-width: 260px;
  max-width: 420px;
  border: 1.5px solid #f7c6e6;
}
.highlight-title {
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d726a7;
}
.highlight-title .fa-star {
  color: #ff7a2f;
  font-size: 1.2rem;
}
.highlight-subtitle {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.highlight-desc {
  color: #6a6a6a;
  font-size: 1rem;
}
body {
  background: #fff;
}
.mission-card-pink {
  background: linear-gradient(120deg, #ffe6f7 80%, #ffd6e9 100%);
  border-color: #f7c6e6;
}
.mission-card-purple {
  background: linear-gradient(120deg, #f5eaff 80%, #e6d6ff 100%);
  border-color: #e0c6f7;
}
.mission-card-blue {
  background: linear-gradient(120deg, #eaf1ff 80%, #d6eaff 100%);
  border-color: #c6e6f7;
}
/* Mission Cards Pink/Orange Styling */
.mission-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0 3.5rem 0;
  flex-wrap: wrap;
}
.mission-card {
  background: linear-gradient(120deg, #ffe6f7 60%, #fff7f0 100%);
  border: 2px solid #d726a7;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(255,122,47,0.10), 0 2px 8px 0 rgba(215,38,167,0.10);
  padding: 2.2rem 2rem 1.5rem 2rem;
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 300px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.mission-card:hover {
  border-color: #ff7a2f;
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.18), 0 4px 16px 0 rgba(215,38,167,0.18);
}
.mission-card .run-hero-icon {
  margin-bottom: 1.2rem;
}
.mission-card h3 {
  color: #23272a;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.mission-card p {
  color: #3a3a3a;
  font-size: 1.05rem;
}

/* Event Impact Section Pink/Orange Gradient */
.event-impact-section {
  background: linear-gradient(100deg, #ff4f9c 0%, #ff7a2f 100%);
  color: #fff;
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
  border-radius: 2rem;
  margin: 3rem 0 2rem 0;
  box-shadow: 0 2px 24px 0 rgba(255,79,156,0.08);
}
.event-impact-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.event-impact-section p {
  font-size: 1.18rem;
  color: #fff;
  opacity: 0.92;
}

.event-impact-stats {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6vw;
  margin: 3.5rem 0 1.5rem 0;
  flex-wrap: wrap;
}
.event-impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.event-impact-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}
.event-impact-label {
  font-size: 1.15rem;
  color: #fff;
  opacity: 0.95;
  font-weight: 500;
}

@media (max-width: 900px) {
  .event-impact-stats {
    gap: 2.5vw;
    margin: 2.2rem 0 1.2rem 0;
  }
  .event-impact-number {
    font-size: 2.1rem;
  }
  .event-impact-label {
    font-size: 1rem;
  }
}

.run-hero-section {
  background: linear-gradient(120deg, #ffe6f7 0%, #fff7f0 100%);
  padding: 60px 0 40px 0;
}

/* Section header with pink-orange gradient */
.run-section-header {
  background: linear-gradient(90deg, #d726a7 0%, #ff7a2f 100%);
  color: #fff;
  padding: 2rem 0 1.2rem 0;
  border-radius: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Pink and Orange Accent for Section Background */
.run-hero-section {
  background: linear-gradient(120deg, #ffe6f7 0%, #fff7f0 100%);
}

/* Pink and Orange Shadow/Accent for Card (for extra pop) */
.run-hero-image-card::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #d726a7 0%, #ff7a2f 100%);
  border-radius: 2rem;
  z-index: 0;
  filter: blur(18px);
  opacity: 0.13;
  pointer-events: none;
}

/* Card border and shadow accent */
.run-hero-image-card {
  border: 2px solid #d726a7;
  box-shadow: 0 4px 24px 0 rgba(255,122,47,0.10), 0 2px 8px 0 rgba(215,38,167,0.10);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.run-hero-image-card:hover {
  border-color: #ff7a2f;
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.18), 0 4px 16px 0 rgba(215,38,167,0.18);
}

.run-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.run-hero-content {
  flex: 1 1 50%;
  min-width: 320px;
}

.run-hero-badge {
  background: #ffe6f7;
  color: #d726a7;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 1.5px solid #f7c6e6;
}

.run-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #23272a;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.run-hero-title-highlight {
  color: #d726a7;
  font-weight: 800;
  display: block;
  font-size: 3.2rem;
  background: linear-gradient(90deg, #d726a7 40%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Add orange accent to main title */
.run-hero-title {
  border-left: 8px solid #ff7a2f;
  padding-left: 1rem;
}

.run-hero-desc {
  font-size: 1.18rem;
  color: #3a3a3a;
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.run-hero-stats {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.run-hero-stat {
  background: #fff;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  border: 1.5px solid #f7c6e6;
  gap: 0.5rem;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(215,38,167,0.04);
}
.run-hero-stat-pink {
  color: #d726a7;
  border-color: #f7c6e6;
}
.run-hero-stat-orange {
  color: #ff7a2f;
  border-color: #ffe0c2;
}
.run-hero-stat {
  background: linear-gradient(90deg, #ffe6f7 60%, #fff7f0 100%);
}
.run-hero-stat:hover {
  box-shadow: 0 4px 16px 0 rgba(255,122,47,0.13), 0 2px 8px 0 rgba(215,38,167,0.13);
  border-color: #d726a7;
}
.run-hero-stat .fa-users {
  color: #d726a7;
}
.run-hero-stat .fa-location-dot {
  color: #ff7a2f;
}

.run-hero-image-wrap {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.run-hero-image-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(215,38,167,0.10);
  padding: 2.5rem 2rem;
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  z-index: 1;
}
.run-hero-image {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

/* Icon color accent for cards */
.run-hero-icon {
  color: #d726a7;
  background: #fff0f7;
  border-radius: 50%;
  padding: 0.7rem;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  border: 2px solid #ff7a2f;
  display: inline-block;
}
.run-hero-pink-blur {
  position: absolute;
  top: 18px;
  right: -18px;
  width: 100px;
  height: 30px;
  background: #d726a7;
  border-radius: 1.5rem;
  filter: blur(18px);
  opacity: 0.18;
  z-index: 0;
}
.run-hero-orange-blur {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 120px;
  height: 30px;
  background: #ff7a2f;
  border-radius: 1.5rem;
  filter: blur(18px);
  opacity: 0.18;
  z-index: 0;
}

@media (max-width: 900px) {
  .run-hero-container {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .run-hero-content, .run-hero-image-wrap {
    min-width: 0;
    width: 100%;
  }
  .run-hero-title, .run-hero-title-highlight {
    font-size: 2.2rem;
  }
  .run-section-header {
    font-size: 1.5rem;
    padding: 1.2rem 0 0.8rem 0;
  }
}
